From: Ted Zlatanov Date: Mon, 11 Mar 2013 17:05:30 +0000 (-0400) Subject: * control.texi (Pattern matching case statement): Fix typo. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~3615^2~568^2~42 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b388e7ad07438a3e3434b63798e3a691982e3bc4;p=emacs.git * control.texi (Pattern matching case statement): Fix typo. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 3c976d37062..6510b56ba3b 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,7 @@ +2013-03-11 Teodor Zlatanov + + * control.texi (Pattern matching case statement): Fix typo. + 2013-03-04 Paul Eggert * elisp.texi, intro.texi: Switch from Latin-1 to UTF-8. diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi index 76a2f464792..9ee01299260 100644 --- a/doc/lispref/control.texi +++ b/doc/lispref/control.texi @@ -373,7 +373,7 @@ symbol to the value that it matched, so that you can later refer to it, either in the @var{body-forms} or also later in the pattern. @item _ This so-called @emph{don't care} pattern matches anything, like the previous -one, but unless symbol patterns it does not bind any variable. +one, but unlike symbol patterns it does not bind any variable. @item (pred @var{pred}) This pattern matches if the function @var{pred} returns non-@code{nil} when called with the object being matched.